www.gusucode.com > XYCMS PHP留言板源码 v1.8PHP源码程序 > XYCMS PHP留言板源码 v1.8/xycmslyb_v1.8/xycmslyb_v1.8/system/add_book.php

    <?php
require 'include/session.php';
require 'include/globle.inc.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>信息添加</title>
<script type="text/javascript" src="Js/jquery.min.js"></script>
<link href="style/style.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="js/laydate.js"></script>
<script type="text/javascript" src="js/check.js"></script>
</head>
<body style="overflow-x:hidden;">
<div id="loader" >页面加载中...</div>
<div id="result" class="result none"></div>
<div class="mainbox">
  <div id="nav" class="mainnav_title">
    <ul>
      <a href="manage_book.php">留言管理</a>| <a href="add_book.php">添加留言</a>
    </ul>
    <div class="clear"></div>
  </div>
  <script>
	var onurl ='add_book.php';
	jQuery(document).ready(function(){
		$('#nav ul a ').each(function(i){
		if($('#nav ul a').length>1){
			var thisurl= $(this).attr('href');
			thisurl = thisurl.replace('&menuid=22','');
			if(onurl.indexOf(thisurl) == 0 ) $(this).addClass('on').siblings().removeClass('on');
		}else{
			$('#nav ul').hide();
		}
		});
		if($('#nav ul a ').hasClass('on')==false){
		$('#nav ul a ').eq(0).addClass('on');
		}
	});
	</script>
  <div id="msg"></div>
  <form name="addform" id="addform" action="?act=ok" method="post">
    <table cellpadding=0 cellspacing=0 class="table_form" width="100%">
      <tr>
        <td width="10%" ><font color="red">*</font>标题</td>
        <td width="90%" >
          <input type="text" class="input-text" name="title"  id="title"  size="55" />
          &nbsp;
          </td>
      </tr>
      <tr>
        <td width="10%" ><font color="red">*</font>信息分类</td>
        <td width="90%" >
          <select name="type_id" class="input_select">
          <?php echo get_str();?>
        </select>
          </td>
      </tr>
      <tr>
        <td width="10%" >留言内容</td>
        <td width="90%" id="box_pics"><textarea name="b_content" id="b_content" cols="85" rows="8"></textarea></td>
      </tr>
      <tr>
        <td width="10%" ><font color="red">*</font>留言者姓名</td>
        <td width="90%" >
          <input type="text" class="input-text" name="b_name"  id="b_name"  size="55" />
          &nbsp;
          </td>
      </tr>
      <tr>
        <td width="10%" >联系电话</td>
        <td width="90%" >
          <input type="text" class="input-text" name="b_tel"  id="b_tel"  size="55" />
          &nbsp;
          </td>
      </tr>
      <tr>
        <td width="10%" >联系邮箱</td>
        <td width="90%" >
          <input type="text" class="input-text" name="b_mail"  id="b_mail"  size="55" />
          &nbsp;
          </td>
      </tr>
      <tr>
        <td width="10%" >联系QQ</td>
        <td width="90%" >
          <input type="text" class="input-text" name="b_qq"  id="b_qq"  size="55" />
          &nbsp;
          </td>
      </tr>
      <tr>
        <td width="10%" ><font color="red">*</font>发布时间</td>
        <td width="90%" id="box_createtime"><input name="c_date" type='text' class="laydate-icon" id="c_date" value="<?php echo date('Y-m-d H:i:s');?>" /></td>
      </tr>
      <tr>
        <td width="10%" >是否显示</td>
        <td width="90%" id="box_posid"><select id="is_view" name="is_view" class="input_select" >
            <option value="0">不显示</option>
            <option value="1" selected="selected">显示</option>
          </select></td>
      </tr>
      
    </table>
    <div id="bootline"></div>
    <div id="btnbox" class="btn">
      <INPUT TYPE="submit"  value="提交" class="button" onClick='javascript:return checkaddform()'>
      <input TYPE="reset"  value="取消" class="button">
    </div>
  </form>
</div>
</body>
</html>
<script>
laydate({
    elem: '#c_date', 
    event: 'focus',
	format: 'YYYY-MM-DD hh:mm:ss'
	});
</script>
<?php
function get_str() { 
    global $db;
	global $str;
    $sql = "select * from xycms_book_class order by c_order asc";  
    $result =$db->query($sql);//查询pid的子类的分类 
    if($result && mysql_affected_rows()){//如果有子类 
        while ($row = mysql_fetch_array($result)) { //循环记录集 
            $str .= "<option value='".$row['id']."'>".$row['title']."</option>"; //构建字符串 下级 
        } 
    } 
    return $str; 
} 



if($_GET["act"]==ok){
	$siteinfo = array(
		'b_title' => $_POST['title'],
		'type_id' => $_POST['type_id'],
		'b_content' => $_POST['b_content'],
		'b_name' => $_POST['b_name'],
		'b_tel' => $_POST['b_tel'],
		'b_mail' => $_POST['b_mail'],
		'b_qq' => $_POST['b_qq'],
		'is_view' => $_POST['is_view'],
		'c_date' => strtotime($_POST['c_date'])
		);
	$db->insert("xycms_book", $siteinfo);
	//$db->close();
    echo "<script language='javascript'>"; 
    echo "alert('恭喜您,信息内容添加成功!');";
    echo " location='manage_book.php';"; 
    echo "</script>";
}
?>